home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / shc.c < prev    next >
C/C++ Source or Header  |  1995-06-21  |  2KB  |  70 lines

  1. /* Copyright (C) 1992, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* shc.c */
  20. /* Support code for shc.h */
  21. #include "std.h"
  22. #include "scommon.h"
  23. #include "shc.h"
  24.  
  25. /* ------ Encoding ------ */
  26.  
  27. /* Empty the 1-word buffer onto the output stream. */
  28. /* q has already been incremented. */
  29. void
  30. hc_put_code_proc(bool reverse_bits, byte *q, uint cw)
  31. {
  32. #define cb(n) ((byte)(cw >> (n * 8)))
  33.     if ( reverse_bits )
  34.     {
  35. #if hc_bits_size > 16
  36.         q[-3] = byte_reverse_bits[cb(3)];
  37.         q[-2] = byte_reverse_bits[cb(2)];
  38. #endif
  39.         q[-1] = byte_reverse_bits[cb(1)];
  40.         q[0] = byte_reverse_bits[cb(0)];
  41.     }
  42.     else
  43.     {
  44. #if hc_bits_size > 16
  45.         q[-3] = cb(3);
  46.         q[-2] = cb(2);
  47. #endif
  48.         q[-1] = cb(1);
  49.         q[0] = cb(0);
  50.     }
  51. #undef cb
  52. }
  53.  
  54. /* Put out any final bytes. */
  55. /* Note that this does a store_state, but not a load_state. */
  56. byte *
  57. hc_put_last_bits_proc(stream_hc_state *ss, byte *q, uint bits, int bits_left)
  58. {    while ( bits_left < hc_bits_size )
  59.     {    byte c = (byte)(bits >> (hc_bits_size - 8));
  60.         if ( ss->FirstBitLowOrder )
  61.           c = byte_reverse_bits[c];
  62.         *++q = c;
  63.         bits <<= 8;
  64.         bits_left += 8;
  65.     }
  66.     ss->bits = bits;
  67.     ss->bits_left = bits_left;
  68.     return q;
  69. }
  70.